Version

IsResourceValid Method

Returns true if this is a valid resource
Syntax
'Declaration
 
Protected MustOverride Function IsResourceValid( _
   ByVal id As T, _
   ByVal resource As Object _
) As Boolean
protected abstract bool IsResourceValid( 
   T id,
   object resource
)

Parameters

id
The id of the resource
resource
The resource that was found

Return Value

True if the resource is valid, otherwise false
Remarks

For example, if the id represents a Brush and a Thickness is found then this method should return false.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also